Add Web Crawler Multi-Agent Workflow (Crawler_Agent.yaml)#561
Open
Montanus-zyy wants to merge 1 commit intoOpenBMB:mainfrom
Open
Add Web Crawler Multi-Agent Workflow (Crawler_Agent.yaml)#561Montanus-zyy wants to merge 1 commit intoOpenBMB:mainfrom
Montanus-zyy wants to merge 1 commit intoOpenBMB:mainfrom
Conversation
NA-Wen
requested changes
Mar 5, 2026
Collaborator
NA-Wen
left a comment
There was a problem hiding this comment.
Thank you for the contribution!
However, this workflow currently does not seem to actually perform web crawling — it mainly describes a planning/coding/review pipeline without a concrete mechanism for fetching or parsing web pages. As a result, it may not function as a real crawler workflow yet.
Could you please revise this and include an actual web crawling step (e.g., fetching pages, parsing content, or integrating a crawling tool)? The current version feels too limited for a “web crawler” workflow.
Once this is improved, we would be happy to merge it soon.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Added a customized multi-agent workflow specifically designed for web scraping tasks (
Crawler_Agent.yaml).Features
This workflow introduces a 3-node architecture to improve code robustness and quality:
node_ceo): Analyzes the user's scraping requirements and breaks them down into step-by-step plans.node_engineer): Writes the Python crawler usingrequestsandBeautifulSoup. The prompt strictly requires adding User-Agent headers (for basic anti-bot bypass) andtry-exceptblocks for error handling.node_reviewer): Acts as QA to inspect the generated code for syntax errors and ensures the anti-scraping and exception-handling requirements are met before finalizing the script.Motivation
Web scraping is a very common daily task for data analysis. The default configurations often produce fragile crawler code. This specialized workflow ensures the generated code is ready for real-world scenarios.